This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
Mucking around with how jQuery expects JSON to be formatted and doing my Google research I finally found the answer. for jQuery autocomplete you need to override the default data parser to tease out the key value pairs from the verbose Domino JSON object using the undocumented "parse" parameter of autocomplete. Use parse to specify a function that reads the JSON data and extracts an array of key value pairs. Then use the (documented) format parameter of jQuery to return the individual item. I now have a reasonably succint jQuery autocompleter.